Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| permissions: | ||
| actions: read | ||
| pages: write | ||
| id-token: write |
There was a problem hiding this comment.
Grant contents permission for checkout
The workflow overrides the GITHUB_TOKEN scopes to only actions/pages/id-token, so the default contents: read scope is removed. actions/checkout@v3 needs contents: read to pull the repo; with these permissions the checkout step will fail on every tag push and docs will never build. Add contents: read under permissions to allow the publish-docs job to run.
Useful? React with 👍 / 👎.
No description provided.